//5.3 - The Static Variable Demonstration program- Dirk Henkemans #include #include using namespace std; // class Horse { public: static int speed; //the remainder of the horse class }; int Horse::speed = 3;//notice the global initialization int main(void) { Horse horse1; Horse horse2; Horse::speed = 5; cout<